eeae16e5cc2ca9cf43c6c8b0976c45c86a32766b,java/idea-ui/src/com/intellij/ide/util/projectWizard/ProjectWizardUtil.java,ProjectWizardUtil,createDirectoryIfNotExists,#String#String#boolean#,44
Before Change
if (!dir.exists()) {
if (promptUser) {
final int answer = Messages.showOkCancelDialog(IdeBundle.message("promot.projectwizard.directory.does.not.exist", promptPrefix,
dir.getPath(), ApplicationNamesInfo.getInstance().getFullProductName()),
IdeBundle.message("title.directory.does.not.exist"), Messages.getQuestionIcon());
if (answer != Messages.OK) {
return false;
After Change
if (!dir.exists()) {
if (promptUser) {
String ide = ApplicationNamesInfo.getInstance().getFullProductName();
String message = IdeBundle.message("prompt.project.wizard.directory.does.not.exist", promptPrefix, dir, ide);
int answer = Messages.showOkCancelDialog(message, IdeBundle.message("title.directory.does.not.exist"), Messages.getQuestionIcon());
if (answer != Messages.OK) {
return false;